2c1ff88d31df514ea435a56c282ac439d16bfab3,src/main/java/pers/towdium/justEnoughCalculation/gui/commom/recipe/GuiRecipe.java,GuiRecipe,displayRecipe,#Recipe#,104

Before Change


        List<ItemStack> input = recipe.getInput();
        for(int i=0; i<4; i++){
            if(i<output.size()){
                this.inventorySlots.getSlot(i).putStack(output.get(i));
            }else {
                this.inventorySlots.getSlot(i).putStack(null);
            }

After Change


        for(int i=0; i<4; i++){
            if(i<output.size()){
                ItemStack itemStack = output.get(i);
                this.inventorySlots.getSlot(i).putStack(itemStack);
                if(itemStack.hasTagCompound() && itemStack.getTagCompound().hasKey("percentage")){
                    buttonList.get(i).displayString = "%";
                }